time.zoneTrans.when (field)

11 uses

	time (current package)
		zoneinfo.go#L54: 	when         int64 // transition time, in seconds since 1970 GMT
		zoneinfo.go#L166: 	if len(l.tx) == 0 || sec < l.tx[0].when {
		zoneinfo.go#L172: 			end = l.tx[0].when
		zoneinfo.go#L188: 		lim := tx[m].when
		zoneinfo.go#L199: 	start = tx[lo].when
		zoneinfo_read.go#L297: 		tx[i].when = n
		zoneinfo_read.go#L313: 		tx = append(tx, zoneTrans{when: alpha, index: 0})
		zoneinfo_read.go#L323: 		if tx[i].when <= sec && (i+1 == len(tx) || sec < tx[i+1].when) {
		zoneinfo_read.go#L324: 			l.cacheStart = tx[i].when
		zoneinfo_read.go#L328: 				l.cacheEnd = tx[i+1].when